'Declaration Function FindStartingWith( _ ByVal value As String, _ ByVal keyPredicate As Func(Of String,Boolean), _ ByVal order As Order _ ) As IndexQuery(Of T,String)
IndexQuery<T,string> FindStartingWith( string value, Func<string,bool> keyPredicate, Order order )
Parameters
- value
- The string to search for as the beginning of key value strings.
- keyPredicate
- An optional condition that found items must satisfy.
- order
- Optionally specifies the order of the key values to sort the result (C1.LiveLinq.Order.Unordered if sorting is not required).
Return Value
An object enumerating all items whose key values are strings that have a beginning matching the specified string and satisfy the optional condition.